home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / gag / Spew.lha / Spew / Makefile.unix < prev    next >
Makefile  |  1987-04-24  |  183b  |  12 lines

  1. # Simple Makefile for spew
  2.  
  3. HEADLNS = \"/usr/games/headline\"
  4.  
  5. CFLAGS = -O -DDEFFILE=$(HEADLNS)
  6.  
  7. spew:    spew.c
  8.     cc $(CFLAGS) -o spew spew.c
  9.  
  10. install: spew
  11.     cp spew headline /usr/games
  12.